Fix a segfault in gtk_statusbar_remove_all
authorMatthias Clasen <mclasen@redhat.com>
Mon, 31 Jan 2011 16:32:19 +0000 (11:32 -0500)
committerMatthias Clasen <mclasen@redhat.com>
Mon, 31 Jan 2011 16:50:23 +0000 (11:50 -0500)
https://bugzilla.gnome.org/show_bug.cgi?id=640487

gtk/gtkstatusbar.c
gtk/tests/testing.c

index 6483f321f9c2aef8dbf98d10dd70e4e8ad4885cc..f3518c5de95e180a6136e82375e2e78815fb2a74 100644 (file)
@@ -529,7 +529,10 @@ gtk_statusbar_remove_all (GtkStatusbar *statusbar,
           if (prev == NULL)
             prev = priv->messages;
 
-          list = prev->next;
+          if (prev)
+            list = prev->next;
+          else
+            list = NULL;
         }
       else
         {
index bc002f6eef197ea6e86add34fa0205660d7a66a0..07cd8d45c206510d50202ee87b88bc3b0e785635 100644 (file)
@@ -232,17 +232,38 @@ test_spin_button_arrows (void)
   g_assert (oldval == 0);
 }
 
+static void
+test_statusbar_remove_all (void)
+{
+  GtkWidget *statusbar;
+
+  g_test_bug ("640487");
+
+  statusbar = gtk_statusbar_new ();
+  g_object_ref_sink (statusbar);
+
+  gtk_statusbar_push (GTK_STATUSBAR (statusbar), 1, "bla");
+  gtk_statusbar_push (GTK_STATUSBAR (statusbar), 1, "bla");
+  gtk_statusbar_remove_all (GTK_STATUSBAR (statusbar), 1);
+
+  g_object_unref (statusbar);
+}
+
 int
 main (int   argc,
       char *argv[])
 {
   gtk_test_init (&argc, &argv);
+  g_test_bug_base ("http://bugzilla.gnome.org/");
   gtk_test_register_all_types();
+
+  g_test_add_func ("/tests/statusbar-remove-all", test_statusbar_remove_all);
   g_test_add_func ("/ui-tests/text-access", test_text_access);
   g_test_add_func ("/ui-tests/button-clicks", test_button_clicks);
   g_test_add_func ("/ui-tests/keys-events", test_button_keys);
   g_test_add_func ("/ui-tests/slider-ranges", test_slider_ranges);
   g_test_add_func ("/ui-tests/xserver-sync", test_xserver_sync);
   g_test_add_func ("/ui-tests/spin-button-arrows", test_spin_button_arrows);
+
   return g_test_run();
 }